home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form SystemX
- BackColor = &H00C0C0C0&
- BorderStyle = 3 'Fixed Dialog
- Caption = "Mail X System"
- ClientHeight = 2790
- ClientLeft = 2835
- ClientTop = 3030
- ClientWidth = 3720
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 700
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 3165
- Left = 2790
- LinkTopic = "Form3"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2790
- ScaleWidth = 3720
- ShowInTaskbar = 0 'False
- Top = 2700
- Width = 3810
- Begin VB.CommandButton Continue
- Caption = "&Continue"
- Height = 435
- Left = 360
- TabIndex = 4
- Top = 2040
- Width = 3135
- End
- Begin VB.Frame Frame1
- BackColor = &H00C0C0C0&
- Caption = "Select Your Mail System:"
- Height = 1680
- Left = 375
- TabIndex = 0
- Top = 135
- Width = 3030
- Begin VB.OptionButton POP3_SMTP
- Caption = "POP3 / SMTP"
- Height = 255
- Left = 480
- TabIndex = 3
- Top = 1200
- Width = 2175
- End
- Begin VB.OptionButton VIM
- BackColor = &H00C0C0C0&
- Caption = "VIM (cc:Mail)"
- Height = 495
- Left = 480
- TabIndex = 2
- Top = 690
- Width = 2175
- End
- Begin VB.OptionButton MSMAIL
- BackColor = &H00C0C0C0&
- Caption = "Microsoft Exchange"
- Height = 375
- Left = 480
- TabIndex = 1
- Top = 330
- Width = 2205
- End
- End
- Attribute VB_Name = "SystemX"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub Continue_Click()
- If MsMail.Value = True Then
- SessionForm.MSess1.Mail_Type = SESSION_MSMAIL
- ElseIf VIM.Value = True Then
- SessionForm.MSess1.Mail_Type = SESSION_VIM
- Else
- SessionForm.MSess1.Mail_Type = SESSION_POP3SMTP
- End If
- Unload Me
- End Sub
- Private Sub Option1_Click()
- End Sub
-